math/rand/v2.ChaCha8.readLen (field)

10 uses

	math/rand/v2 (current package)
		chacha8.go#L20: 	readLen int // 0 <= readLen <= 8
		chacha8.go#L33: 	c.readLen = 0
		chacha8.go#L55: 	if c.readLen > 0 {
		chacha8.go#L56: 		n = copy(p, c.readBuf[len(c.readBuf)-c.readLen:])
		chacha8.go#L57: 		c.readLen -= n
		chacha8.go#L68: 		c.readLen = 8 - len(p)
		chacha8.go#L82: 		c.readLen = copy(c.readBuf[len(c.readBuf)-len(buf):], buf)
		chacha8.go#L103: 	if c.readLen > 0 {
		chacha8.go#L105: 		out = append(out, uint8(c.readLen))
		chacha8.go#L106: 		out = append(out, c.readBuf[len(c.readBuf)-c.readLen:]...)